home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCGUIA 10
/
PC Guia 10.iso
/
database
/
power.dir
/
00007_Script_7
< prev
next >
Wrap
Text File
|
1996-03-14
|
933b
|
44 lines
on GetFileNames
end
on deletecast
set TheList = [32,127,78,45,63,184,115,152,148,132,99,14,140,102,149]
set times = count (TheList)
repeat with j = 327 to 934
set xx = the name of cast j
if the castType of cast j <> "#palette" and xx <> 0 then
set result = false
repeat with i = 1 to times
set zz = getAt(TheList,i)
set the itemDelimiter to "-"
if item 1 of xx = zz then
put TRUE into result
exit repeat
end if
set the itemDelimiter to "."
if item 1 of xx = zz then
put TRUE into result
exit repeat
end if
set the itemDelimiter to ","
end repeat
if result = FALSE then
put "erase cast" & j
erase cast j
end if
end if
end repeat
end